home *** CD-ROM | disk | FTP | other *** search
/ Quick PC 61 / Quick PC 61.iso / I386 / SASETUP.MSI / F77573_tasks.asp < prev    next >
Encoding:
Text File  |  2003-02-21  |  1.4 KB  |  48 lines

  1. <%    '==================================================
  2.     ' Microsoft Server Appliance
  3.     '
  4.     ' Tasks tab page
  5.     '
  6.     ' Copyright (c) Microsoft Corporation.  All rights reserved.
  7.     '================================================== %>
  8.  
  9. <% Option explicit %>
  10. <!-- #include file="sh_page.asp"         -->
  11. <!-- #include file="sh_statusbar.asp"  -->
  12. <!-- #include file="tabs.asp"             -->
  13. <!-- #include file="sh_tasks.asp"         -->
  14. <!-- Copyright (c) Microsoft Corporation.  All rights reserved.-->
  15. <%
  16.  
  17.     Dim L_PAGETITLE_TEXT
  18.     Dim L_TASKSLBL_TEXT
  19.     Dim L_NOTASKS_MESSAGE
  20.     
  21.     L_PAGETITLE_TEXT  = GetLocString("sakitmsg.dll", "&H40010026", "")
  22.     L_TASKSLBL_TEXT   = GetLocString("sakitmsg.dll", "&H40010027", "")
  23.     L_NOTASKS_MESSAGE = GetLocString("sakitmsg.dll", "&H40010028", "")
  24.  
  25.  
  26.     Call ServeStatusBar(True, "", "")
  27.     Call ServeTabBar()
  28.  
  29. %>
  30. <HTML>
  31. <head>
  32. <!--  Microsoft(R) Server Appliance Platform - Web Framework Tasks Page
  33.       Copyright (c) Microsoft Corporation.  All rights reserved. -->
  34. <meta http-equiv="Content-Type" content="text/html; charset=<%=GetCharSet()%>">
  35. <meta http-equiv="PRAGMA" content="NO-CACHE">
  36. <%            
  37.     Call SA_EmitAdditionalStyleSheetReferences("")
  38. %>        
  39. <TITLE><%=L_PAGETITLE_TEXT%></TITLE>
  40. <SCRIPT LANGUAGE="JavaScript" SRC="<%=m_VirtualRoot%>sh_page.js"></SCRIPT>
  41. </HEAD>
  42. <BODY onDragDrop="return false;" oncontextmenu="//return false;"> 
  43. <%
  44.     Call ServeTasks()
  45. %>
  46. </BODY>
  47. </HTML>
  48.